home *** CD-ROM | disk | FTP | other *** search
- /* WADLC.H - some data structures for WADLC.C */
-
- typedef struct
- {
- char name[8];
- short x,y;
- } vertex_t;
-
- typedef struct
- {
- char name[8];
- short floorheight, ceilingheight;
- char floortexture[8], ceilingtexture[8];
- short brightness, special, tag;
- } sector_t;
-
- typedef struct
- {
- short sector;
- short xoffset, yoffset;
- char uppertexture[8], lowertexture[8], normaltexture[8];
- } sidedef_t;
-
- typedef struct
- {
- short from, to;
- short attrs, type, tag;
- short rightsidedef, leftsidedef;
- } linedef_t;
-
- typedef struct
- {
- short type;
- short x,y;
- short angle;
- short attrs;
- } thing_t;
-
-